home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / source / misc / word2table.in < prev    next >
Text File  |  1994-02-08  |  379b  |  6 lines

  1. # Translate WORD usages into "(table TABLE add ...)" forms wherever found.
  2. /WORD/s/;\([^ ()]*\) \([^ ()]*\) \([^ ()]*\) WORD[ ]*$/(table TABLE add (\3 \2 \1))/
  3. /foo/s/;\([^ ()]\) \((.*)\) WORD[ ]*$/(table TABLE add (foo \2 \1))/
  4. /WORD/s/;\((.*)\) \([^ ()]*\) \([^ ()]*\) WORD[ ]*$/(table TABLE add (\3 \2 \1))/
  5. /foo/s/;\((.*)\) \((.*)\) WORD[ ]*$/(table TABLE add (foo  \2 \1))/
  6.